/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
body {
  background-image:url('https://www.publicdomainpictures.net/pictures/30000/velka/yellow-autumn.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  font-family:Arial, Helvetica, sans-serif
}
h1{
  margin: 13px;
  margin-bottom: 0px
}
div {
  background-color: rgba(250, 235, 215, 0.7);
  border: 2px solid antiquewhite;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.galery {
  background-color: rgba(250, 235, 215, 0.7);
  border: 2px solid antiquewhite;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.panel{
  max-width: 25%;
  min-width: 200px;
  height: auto;
}
@media screen and (max-width:414px) {
    div {
  margin-right: 30px;
  margin-left: 30px;
  padding: 40px;
  border-radius: 10px;
  }
.galery {
  margin-right: 30px;
  margin-left: 30px;
  padding: 5px;
  border-radius: 10px;
  margin-top:30px;
  margin-bottom: 30px;
}
.panel{
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 13px;
  margin-right: 13px;
}
}
@media screen and (min-width:414px) {
  div {
  margin-right: 30px;
  margin-left: 30px;
  padding: 40px;
  border-radius: 10px;
  }
.galery {
  margin-right: 30px;
  margin-left: 30px;
  padding: 5px;
  border-radius: 10px;
  margin-top:30px;
  margin-bottom: 30px;
}
.panel{
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 13px;
  margin-right: 13px;
}
}
@media screen and (min-width:600px) {
  div {
  margin-right: 100px;
  margin-left: 100px;
  padding: 40px;
  border-radius: 10px;
}
.galery {
  margin-right: 30px;
  margin-left: 30px;
  padding: 5px;
  border-radius: 10px;
}
.panel{
  margin-top: 15px;
  margin-left: 13px;
  margin-right: 13px;
}
}
@media screen and (min-width:1010px) {
   div {
  margin-right: 350px;
  margin-left: 350px;
  padding: 40px;
  border-radius: 10px;
 }
.galery {
  margin-right: 100px;
  margin-left: 100px;
  padding: 20px;
  border-radius: 10px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.panel{
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
}
}